projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1986c4d
)
Fix embarrassing paren-matching blunder in eglot.el
author
João Távora
<joaotavora@gmail.com>
Tue, 19 Jul 2022 16:50:35 +0000
(17:50 +0100)
committer
João Távora
<joaotavora@gmail.com>
Tue, 19 Jul 2022 16:50:45 +0000
(17:50 +0100)
* eglot.el (eglot-handle-request workspace/applyEdit): Fix parens.
lisp/progmodes/eglot.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/eglot.el
b/lisp/progmodes/eglot.el
index c3ef543e3dc5a80345c73eb9d950ce623fafab61..f9a7d2d1e765d35f7624fe519ec1b1bee4ab2983 100644
(file)
--- a/
lisp/progmodes/eglot.el
+++ b/
lisp/progmodes/eglot.el
@@
-2048,7
+2048,7
@@
THINGS are either registrations or unregisterations (sic)."
(cl-defmethod eglot-handle-request
(_server (_method (eql workspace/applyEdit)) &key _label edit)
"Handle server request workspace/applyEdit."
- (eglot--apply-workspace-edit edit eglot-confirm-server-initiated-edits)
)
+ (eglot--apply-workspace-edit edit eglot-confirm-server-initiated-edits)
`(:applied t))
(cl-defmethod eglot-handle-request